* {
    padding: 0;
    margin: 0;
}

/* Nav bar */
.navbar {
    height: 10vh;
    border-bottom: 1px solid white !important;
}

.nav-item a {
    font-size: 20px;
    margin-left: 40px;
    font-weight: bolder;
    color: aliceblue;
}

.nav-item a:hover {
    color: gold;
}

.dropdown-menu li:hover {
    color: gold;
}




/* Navigation Bar */
.social {
    position: fixed;
    top: 100px;
}

.social ul {
    padding: 0px;
    transform: translate(-270px, 0);
}

.social ul li {
    display: block;
    margin: 5px;
    background: rgb(106, 102, 110);
    width: 320px;
    text-align: right;
    padding: 10px;
    border-radius: 0 30px 30px 0;
    transition: all 1s;
}

.social ul li:hover {
    transform: translate(110px, 0);
    background: rgba(255, 255, 255, 0.4);
}

.social ul li:hover a {
    color: #0e0101;
}

.social ul li:hover i {
    color: #fff;
    background: rgba(0, 0, 0, 0.36);
    transform: rotate(360deg);
    transition: all 1s;
}

.social ul li i {
    margin-left: 10px;
    color: #000;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 30px;
    background: #ffffff;
    transform: rotate(0deg);
}




body {
    background: url(http://subtlepatterns.subtlepatterns.netdna-cdn.com/patterns/office.png) #444;
    font-size: 1em;
    font-family: 'Oswald', 'Helvetica Neue', Helvetica;
    line-height: 1.4;
}

.banner {
    position: relative;
    z-index: 1;
    margin: 65px auto;
    width: 330px;
}

.banner .line {
    margin: 0 0 10px;
    width: 100%;
    height: 78px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    text-transform: uppercase;
    font-size: 3em;
    line-height: 78px;
    transform: skew(0, -15deg);
}

.banner .line:after,
.banner .line:first-child:before {
    position: absolute;
    top: 44px;
    left: 0;
    z-index: -1;
    display: block;
    width: 330px;
    height: 78px;
    border-radius: 4px;
    background: rgba(180, 180, 180, 0.8);
    content: '';
    transform: skew(0, 15deg);
}

.banner .line:first-child:before {
    top: -10px;
    right: 0;
    left: auto;
}

.banner .line:first-child:before,
.banner .line:last-child:after {
    width: 0;
    height: 0;
    border-width: 38px;
    border-style: solid;
    border-color: rgba(180, 180, 180, 0.8) rgba(180, 180, 180, 0.8) transparent transparent;
    background: transparent;
}

.banner .line:last-child:after {
    top: 12px;
    border-color: transparent transparent rgba(180, 180, 180, 0.8) rgba(180, 180, 180, 0.8);
}

.banner span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    text-shadow: 1px 1px 0 #444;
}



.box {
    width: 400px;
    height: 200px;
    background: #fff;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -50px;
}

.box .content {
    overflow: hidden;
    width: 400px;
    height: 200px;
    background: #000;
    position: relative;
}

.box .content img {
    margin-top: -120px;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -ms-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}

.box .content:hover img {
    opacity: 0.3;
    margin-top: -170px;
    /* -webkit-filter: blur(3px); */
}

.box .content:hover .text1 {
    left: 130px;
    opacity: 1;

}

.box .content:hover .text2 {
    left: 180px;
    opacity: 1;
}

.box .content .text1 {
    color: #fff;
    font-size: 40px;
    font-family: 'Oswald', cursive;
    position: absolute;
    left: 330px;
    top: 60px;
    opacity: 0;

    -webkit-transition: all 800ms cubic-bezier(0.000, 0.440, 0.000, 0.795);
    -moz-transition: all 800ms cubic-bezier(0.000, 0.440, 0.000, 0.795);
    -ms-transition: all 800ms cubic-bezier(0.000, 0.440, 0.000, 0.795);
    -o-transition: all 800ms cubic-bezier(0.000, 0.440, 0.000, 0.795);
    transition: all 800ms cubic-bezier(0.000, 0.440, 0.000, 0.795);

    -webkit-transition-timing-function: cubic-bezier(0.000, 0.440, 0.000, 0.795);
    -moz-transition-timing-function: cubic-bezier(0.000, 0.440, 0.000, 0.795);
    -ms-transition-timing-function: cubic-bezier(0.000, 0.440, 0.000, 0.795);
    -o-transition-timing-function: cubic-bezier(0.000, 0.440, 0.000, 0.795);
    transition-timing-function: cubic-bezier(0.000, 0.440, 0.000, 0.795);
}

.box .content .text2 {
    color: #fff;
    font-size: 20px;
    font-family: 'Oswald', cursive;
    position: absolute;
    left: -100px;
    top: 100px;
    opacity: 0;
    -webkit-transition: all 800ms cubic-bezier(0.000, 0.890, 0.630, 0.980);
    -moz-transition: all 800ms cubic-bezier(0.000, 0.890, 0.630, 0.980);
    -ms-transition: all 800ms cubic-bezier(0.000, 0.890, 0.630, 0.980);
    -o-transition: all 800ms cubic-bezier(0.000, 0.890, 0.630, 0.980);
    transition: all 800ms cubic-bezier(0.000, 0.890, 0.630, 0.980);

    -webkit-transition-timing-function: cubic-bezier(0.000, 0.890, 0.630, 0.980);
    -moz-transition-timing-function: cubic-bezier(0.000, 0.890, 0.630, 0.980);
    -ms-transition-timing-function: cubic-bezier(0.000, 0.890, 0.630, 0.980);
    -o-transition-timing-function: cubic-bezier(0.000, 0.890, 0.630, 0.980);
    transition-timing-function: cubic-bezier(0.000, 0.890, 0.630, 0.980);
}

.box:before {
    content: "";
    width: 80%;
    height: 8px;
    bottom: 18px;
    left: 13px;
    z-index: -1;
    background: #000;
    position: absolute;
    box-shadow: -10px 10px 20px #000;
    -moz-transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -o-transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -ms-transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(-5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
}

.box:after {
    content: "";
    width: 80%;
    height: 8px;
    bottom: 18px;
    right: 13px;
    z-index: -1;
    background: #000;
    position: absolute;
    box-shadow: 10px 10px 20px #000;
    -moz-transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -o-transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    -ms-transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(5deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
}










/* Middle */
.mid1 {
    width: 100%;
    height: 40vh;
}

.midrap1 {
    width: 80%;
    margin: auto;

}

.snip {
    font-family: 'Fauna One', Arial, sans-serif;
    position: relative;
    margin: 10px 20px;
    min-width: 230px;
    max-width: 295px;
    min-height: 220px;
    width: 100%;
    color: #ffffff;
    text-align: right;
    line-height: 1.4em;
    background-color: #1a1a1a;
    display: inline-block;
    margin-left: 50px;
    margin-top: 40px;
}

.snip * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.snip img {
    position: absolute;
    right: 0%;
    top: 50%;
    opacity: 1;
    width: 100%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.snip figcaption {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 20px 0 20px 20px;
}

.snip h4,
.snip p {
    margin: 0;
    width: 100%;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
}

.snip h4 {
    font-family: 'Playfair Display', Arial, sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.snip p {
    font-size: 0.9em;
}

.snip:hover img,
.snip.hover img {
    width: 55%;
    right: -10%;
}

.snip:hover figcaption h4,
.snip.hover figcaption h4,
.snip:hover figcaption p,
.snip.hover figcaption p {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}


/* Middle */
#mid2{
    width: 100%;
    height: 110vh;
    /* background-color:rgb(2, 12, 33); */
}
.midrap2{
    width: 80%;
    margin: auto;
    padding-top: 30px;
}
.midrap2 h1{
    color: white;
    text-align: center;
    font-size: 80px;
    font-family: 'Noto Serif', 'serif';
    font-weight: bolder;
}
.midrap2 img{
    margin-left: 270px;
    margin-top: 20px;
    border: 12px solid rgb(15, 15, 15);
}
.midrap3{
    width: 80%;
    margin: auto;
    padding-top: 50px;
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.box5{
    border: 10px solid white;
}
.box5 h2{
    text-align: center;
    font-size: 40px;
    color: white;
}
.box6{
    border: 10px solid white;
}
.box6 h2{
    text-align: center;
    font-size: 40px;
    color: white;
}
.box7{
    border: 10px solid white;
}
.box7 h2{
    text-align: center;
    font-size: 40px;
    color: white;
}
.box8{
    border: 10px solid white;
}
.box8 h2{
    text-align: center;
    font-size: 40px;
    color: white;
}






/* Middle */
#mid7{
    width: 100%;
    height: 300vh;
    /* background-color:rgb(2, 12, 33); */
}
.midrap18{
    width: 80%;
    margin: auto;
}
.midrap18 h1{
    color: white;
    font-size: 70px;
    text-align: center;
    font-family: 'Unbounded', 'sans-serif';
}
.midrap19{
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-top: 50px;
}
.box25{
    border: 15px solid whitesmoke;
}
.box25 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box25 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box26{
    border: 15px solid whitesmoke;
}
.box26 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box26 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box27{
    border: 15px solid whitesmoke;
}
.box27 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box27 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box28{
    border: 15px solid whitesmoke;
}
.box28 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box28 h2{
    font-size: 30px;
    color: whitesmoke;
     text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box29{
    border: 15px solid whitesmoke;
}
.box29 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box29 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box30{
    border: 15px solid whitesmoke;
}
.box30 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box30 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box31{
    border: 15px solid whitesmoke;
}
.box31 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box31 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box32{
    border: 15px solid whitesmoke;
}
.box32 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box32 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box33{
    border: 15px solid whitesmoke;
}
.box33 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box33 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box34{
    border: 15px solid whitesmoke;
}
.box34 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box34 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}
.box35{
    border: 15px solid whitesmoke;
}
.box35 img{
    height: 35vh;
    width: 90%;
    margin-top: 20px;
    margin-left: 30px;
}
.box35 h2{
    font-size: 30px;
    color: whitesmoke;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding-top: 15px;
}